1 | #ifndef FACT_StateMachineDimControl
|
---|
2 | #define FACT_StateMachineDimControl
|
---|
3 |
|
---|
4 | #include <set>
|
---|
5 |
|
---|
6 | #include "DimState.h"
|
---|
7 | #include "StateMachineDim.h"
|
---|
8 |
|
---|
9 | class Configuration;
|
---|
10 |
|
---|
11 | class StateMachineDimControl : public StateMachineDim
|
---|
12 | {
|
---|
13 | std::mutex fMutex;
|
---|
14 |
|
---|
15 | std::vector<DimDescriptions*> fDimDescriptionsList;
|
---|
16 |
|
---|
17 | std::set<std::string> fServerList;
|
---|
18 | std::set<Service> fServiceList;
|
---|
19 | std::map<std::string, std::vector<std::string>> fCommandList;
|
---|
20 | std::map<std::string, State> fCurrentStateList;
|
---|
21 | std::map<std::pair<std::string, int32_t>, std::pair<std::string, std::string>> fStateDescriptionList;
|
---|
22 | std::map<std::string, std::vector<Description>> fServiceDescriptionList;
|
---|
23 |
|
---|
24 | std::function<void(const std::string &, const State&)> fStateCallback;
|
---|
25 |
|
---|
26 | DimVersion fDim;
|
---|
27 | DimDnsServiceList fDimList;
|
---|
28 |
|
---|
29 | int fVerbosity;
|
---|
30 | bool fDebug;
|
---|
31 |
|
---|
32 | std::string fUser;
|
---|
33 | std::string fScriptUser;
|
---|
34 |
|
---|
35 | std::string Line(const std::string &txt, char fill);
|
---|
36 |
|
---|
37 | public:
|
---|
38 | static bool fIsServer;
|
---|
39 |
|
---|
40 | int ChangeState(int qos, const Time &time=Time(), int scriptdepth=-1, std::string scriptfile="", std::string user="");
|
---|
41 | int Write(const Time &time, const std::string &txt, int qos=kMessage);
|
---|
42 |
|
---|
43 | int StartScript(const EventImp &imp, const std::string &cmd);
|
---|
44 | int StopScript();
|
---|
45 |
|
---|
46 | int HandleStateChange(const std::string &server, DimDescriptions *state);
|
---|
47 | int HandleDescriptions(DimDescriptions *state);
|
---|
48 | int HandleStates(const std::string &server, DimDescriptions *state);
|
---|
49 | int HandleServerAdd(const std::string &server);
|
---|
50 | int HandleServerRemove(const std::string &server);
|
---|
51 | int HandleAddService(const Service &svc);
|
---|
52 |
|
---|
53 | bool HasServer(const std::string &server);
|
---|
54 |
|
---|
55 | std::vector<std::string> GetServerList();
|
---|
56 | std::vector<std::string> GetCommandList(const std::string &server);
|
---|
57 | std::vector<std::string> GetCommandList();
|
---|
58 | std::vector<Description> GetDescription(const std::string &service);
|
---|
59 |
|
---|
60 | int PrintStates(std::ostream &out, const std::string &serv="");
|
---|
61 | int PrintDescription(std::ostream &out, bool iscmd, const std::string &serv="", const std::string &service="");
|
---|
62 |
|
---|
63 | State GetServerState(const std::string &server);
|
---|
64 |
|
---|
65 | void SendDimCommand(const std::string &server, std::string str, std::ostream &lout);
|
---|
66 |
|
---|
67 | void SetStateCallback(const std::function<void(const std::string &, const State &)> &func) { fStateCallback = func; }
|
---|
68 |
|
---|
69 | public:
|
---|
70 | StateMachineDimControl(std::ostream &out=std::cout);
|
---|
71 | ~StateMachineDimControl();
|
---|
72 |
|
---|
73 | int EvalOptions(Configuration &conf);
|
---|
74 | };
|
---|
75 |
|
---|
76 | #endif
|
---|